home *** CD-ROM | disk | FTP | other *** search
-
- {*******************************************************}
- { }
- { Programmer's Wizard 2 Pascal Script }
- { (popis jazyka v souboru SCRIPT.DOC) }
- { }
- {*******************************************************}
- uses ScriptUtils;
-
- function GetVerStr: string;
- var
- mMajor, mMinor, mRel: Integer;
- Begin
- GetVersionEx(mMajor, mMinor, mRel);
- result := 'v' + IntToStr(mMajor) + '.' + IntToStr(mMinor) + '.' +
- IntToStr(mRel);
- end;
-
- function GetValidVerStr: string;
- Begin
- result := 'v2.0.1'; //pozadovana verze PW
- end;
-
- Begin
- if GetValidVerStr <> GetVerStr then //nespravna verze?
- ShowMessage('Upozorn∞nφ: tento skript byl napsßn pro Programmers Wizard ' +
- GetValidVerStr + '. Momentßln∞ spuÜt∞nß verze: ' + GetVerStr);
-
- //toto je skoro minimalni skript :-)
- SendMail('', '', '');
- end.
-
-